home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.mactech.com 2010
/
ftp.mactech.com.tar
/
ftp.mactech.com
/
machack
/
Hacks97
/
PickMeUp.sit
/
Pick Me Up
/
source code
/
Movie app source
/
pickmeUp97
/
source
/
CDefaultButtonWindow.h
< prev
next >
Wrap
Text File
|
1997-06-20
|
868b
|
38 lines
// CDefaultButtonWindow.h
/*
* $Workfile: CDefaultButtonWindow.h $
* $Modtime: 6/20/97 5:52 PM $
* $Revision: 2 $
* $Date: 6/20/97 5:52 PM $
* $History: CDefaultButtonWindow.h $
*
* ***************** Version 2 *****************
* User: jwoo QDate: 6/20/97 Time: 5:52 PM
* Updated in $/ConMan/ConMan Interface Source/General Interface Classes/Generic
* June 20, 1997: No code change here. Just added the version control
* header.
*/
#pragma once
// This class is exactly like LDialogBox accept it doesn't automatically add
// this as a listener to the buttons.
class CDefaultButtonWindow : public LDialogBox
{
public:
enum{class_ID = 'CDBw'};
CDefaultButtonWindow(LStream* inStream);
~CDefaultButtonWindow();
virtual void SetDefaultButton(PaneIDT inButtonID);
virtual void SetCancelButton(PaneIDT inButtonID);
};